123456789101112131415161718192021222324252627282930 |
- import Link from "next/link";
- import { buttonVariants } from "@/components/ui/button";
- import { Badge } from "@/components/ui/badge";
- import { Layout, LayoutContent, LayoutDescription, LayoutHeader, LayoutTitle } from "@/features/page/layout";
- export default function CancelPaymentPage() {
- return (
- <Layout>
- <LayoutHeader>
- <Badge variant="outline">Payment failed</Badge>
- <LayoutTitle>We're sorry, but we couldn't process your payment</LayoutTitle>
- <LayoutDescription>
- We encountered an issue processing your payment.
- <br /> Please check your payment details and try again. <br />
- If the problem persists, don't hesitate to contact us for assistance.
- <br />
- We're here to help you resolve this smoothly.
- </LayoutDescription>
- </LayoutHeader>
- <LayoutContent className="flex items-center gap-2">
- <Link className={buttonVariants({ variant: "default" })} href="/">
- Home
- </Link>
- {/* <ContactSupportDialog /> */}
- </LayoutContent>
- </Layout>
- );
- }
|